home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / applications / 1542 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.7 KB

  1. Path: daily-planet.execpc.com!usenet
  2. From: jeffsj@execpc.com (Jeffery S. Jones)
  3. Newsgroups: comp.sys.amiga.applications
  4. Subject: Re: Commodore-64
  5. Date: 3 Feb 1996 01:23:57 GMT
  6. Organization: Exec-PC BBS - Milwaukee, WI
  7. Message-ID: <2351.6606T1165T1699@execpc.com>
  8. References: <1996Jan31.154620.1@animal> <883.6604T1433T1932@sunshine.net>
  9. NNTP-Posting-Host: sartre.execpc.com
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP) *UNREGISTERED*
  11.  
  12. On 02-Feb-96 17:35:54, sn0077@sunshine.net <lou_timmerman@sunshine.net> wrote:
  13. >>Hi,
  14.  
  15. >>I realize this is the Amiga users group but I don't know where to post this
  16. >>message. This is the closest thing I could find. Ignorance is bliss?
  17.  
  18. >>I have an old commodore-64 that I need help with. It has a 5.25 floopy disk
  19. >>drive that I would like to load programs from. What are the steps to do
  20. >>this?
  21. >> When I go to load any program and run it the end result is:
  22. >> "Please press play on tape". I haven't used the machine in years and have
  23. >> no
  24. >>documentation. The commands I am currently using are:
  25.  
  26. >>LOAD "$", 8
  27.  
  28. >>-> Ready
  29.  
  30. >>LIST
  31.  
  32. >>-> listing of floopy directory.
  33.  
  34. >>LOAD "filename", 8
  35.  
  36. >>-> Ready
  37.  
  38. >>What do I do next? All my next attempts wind up as either "Syntax error" or
  39. >>"Please press play on tape"
  40.  
  41. >if i remember correctly, and its been years and years, the correct syntax is:
  42. >LOAD "filename",8,#  (where # is the drive ie:1 or 2)
  43. > but as i say its been years.
  44.  
  45.   Not quite right.  The number, if present, means load in binary (program)
  46. mode, rather than in text (Basic programs).  The drive is number 8, 2nd drive
  47. is 9, etc.  4 is the printer if you have one.
  48.  
  49.   For bootable disks, the following command will ALMOST always load the
  50. program needed to start the thing:
  51.  
  52.   LOAD "*",8,1
  53.  
  54.   You may have to type RUN after this, if it loads but doesn't start to run
  55. right away.
  56.  
  57.   "*" is a wild card, and in this case, matches the first file on the disk.
  58. For almost all of the bootable disks, this first file is the one to start the
  59. thing.
  60.  
  61.   But if you've already accessed the disk, as best as I recall it will get the
  62. LAST file accessed.  "$", the directory, is treated as a file., so it will end
  63. up loading it again.
  64.  
  65.   If the file is a basic program (letters .PRG perhaps; it really has been a
  66. long time since I looked at it), you don't need to put the ,1 at the end, and
  67. it may not work if you do it.
  68.  
  69.   Since the LIST command works, you should be able to run things off the disk.
  70.  
  71.   Load without the ,8 bit will try to load off a tape, which you probably
  72. don't have.  Just press the RUN/STOP key to make it stop.
  73.  
  74. <tsb> *Starfire*
  75. *-___________________________________________________________________-*
  76. Jeff Jones  email:jeffsj@execpc.com   *//* Amiga Lives!
  77.  *TFG*Starfire*Design*Studio*      *\\//*  1985-1994, born again 1995!
  78. --
  79.  
  80.